home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / lib / crater-lake.g < prev    next >
Text File  |  1995-05-04  |  2KB  |  82 lines

  1. (game-module "crater-lake"
  2.   (title "Crater Lake")
  3.   (blurb "A classic test-piece for one-on-one.")
  4.   (instructions "Claim the towns in your vicinity, then go after the enemy.")
  5.   (notes
  6.     "This features two countries connected by a forested isthmus,"
  7.     "plus an island with a town by a lake, surrounded by mountains."
  8.     "Maneuver is therefore difficult."
  9.   )
  10.   (base-module "classic")
  11.   (variants (see-all true))
  12. )
  13.  
  14. (set terrain-seen true)
  15.  
  16. ;;; We don't want anything else added.
  17.  
  18. (set synthesis-methods nil)
  19.  
  20. (scorekeeper (do last-side-wins))
  21.  
  22. (world 35)
  23.  
  24. (area 35 31)
  25.  
  26. (area (terrain (by-char ".,=~+%^_")
  27.   "___________________________________"
  28.   "....+,............................."
  29.   "....+....+++++~~..................."
  30.   "........+++++++++,................."
  31.   "......++++++++++~,................."
  32.   "......%%++++++++++,................"
  33.   "...+%.++++++++++++................."
  34.   ".......++++++++++++................"
  35.   "......+++++++++++,.......,........."
  36.   ".......%++++++++++........~~......."
  37.   ".......%+++++++++.................."
  38.   "..,+%..,%++++++++.................."
  39.   "..+%%%+%%%++++++..................."
  40.   "...%%%%%%%%%%+++%.................."
  41.   "...,%%%%%,%%%%%%..................."
  42.   ".....%%%....,%%%..................."
  43.   "^%...........%%................+^^^"
  44.   "^^^%%........%%%......+........+^^^"
  45.   "^^^^%%......%%%%+.....+.......+^^^^"
  46.   ".%^^^^%.....%%%%%++,+..........^^^%"
  47.   ".+^^^^^%%...%%%%+++++..+.......^^^."
  48.   ".+^^^%%^^%..%%%%++++++..+.......^^^"
  49.   "+^^^%%%%+%..,%%+++++~+~..+......^^^"
  50.   "^^^^^%%%%%.....++++++^~++++++....^^"
  51.   "^^^^%%%%%........+++~^^^~~~~+....++"
  52.   "+^++.%%%%.........,++~~~~~+~~~....."
  53.   ".....%%+............++~~~~+........"
  54.   "......%++.............++~+........."
  55.   ".....,.++.........................."
  56.   "........+%........................."
  57.   "___________________________________"
  58. ))
  59.  
  60. (side 1 (noun "Paramagudi"))
  61.  
  62. (side 2 (noun "Vrigstader"))
  63.  
  64. (city 6 24 1 (n "Paramagudi"))
  65.  
  66. (city 20 10 2 (n "Vrigstad"))
  67.  
  68. (town 8 27 0 (n "Vryburg"))
  69. (town 3 24 0 (n "Mistake Creek"))
  70. (town 9 24 0 (n "Tooele"))
  71. (town 6 22 0 (n "Bellows Falls"))
  72. (town 10 22 0 (n "Atlasburg"))
  73. (town 6 18 0 (n "Adobe Acres"))
  74. (town 22 13 0 (n "Philomath"))
  75. (town 1 9 0 (n "Waggaman"))
  76. (town 24 9 0 (n "Yeehaw Junction"))
  77. (town 8 8 0 (n "Ushtobe"))
  78. (town 16 7 0 (n "Tillamook"))
  79. (town 20 7 0 (n "Hayti"))
  80. (town 24 7 0 (n "Bo Phloi"))
  81. (town 20 4 0 (n "Buzzards Bay"))
  82.